home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / novell / fyi8 / 08016.dos < prev    next >
Text File  |  1996-07-10  |  2KB  |  47 lines

  1. Subject:      Bug Using NCOPY with the Disk Limitation Feature of v2.1  
  2. Date:         March 8, 1988
  3. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4.      
  5. GENERAL 
  6. INFORMATION:  We reported a bug that a customer found.  When using the disk
  7.               limitation feature of v2.1, a user tries to copy a file that
  8.               is larger than the disk space that is allocated for that
  9.               user.  The file doesn't get copied, but when the user does 
  10.               a directory listing, they have 0 bytes free.  The user still 
  11.               can copy smaller files that are less than the allocated limit
  12.               and they get copied.  However, doing another directory 
  13.               listing still shows 0 bytes free.  The only way to get a 
  14.               correct directory listing is to do a PURGE.
  15.  
  16.               The following is an explanation from our NetWare Utilities 
  17.               Senior Engineer.
  18.  
  19.               The way NCOPY works for v2.1 is this:
  20.  
  21.                   IF (not enough disk space)
  22.                   THEN print out message of not enough disk space.
  23.  
  24.               Simple enough?
  25.               Well, from what you had reported it appears that NCOPY 
  26.               looked, there wasn't enough space, and it put up the error
  27.               message.  The reason there wasn't enough space was probably
  28.               that the user had deleted a file and had not purged it.  The
  29.               OS still shows the space for a deleted file as if it is not 
  30.               deleted until the file is purged.  Creating a new file or
  31.               deleting an existing file will cause a PURGE.  But NCOPY
  32.               doesn't cause a PURGE before looking at how much room is
  33.               available.
  34.  
  35.               So, we'll modify NCOPY to do it that way.  Similar to the
  36.               following algorithm:
  37.  
  38.               IF (not enough  disk space)
  39.                   Do a purge.
  40.                   IF (still not enough disk space)
  41.                   THEN print out message of not enough disk space.
  42.                   ELSE copy the file.
  43.               ENDIF
  44.  
  45.               We hope this helps.  Let us know if we can be of any more
  46.               help.
  47.